Scientific and technical writing, native to the web
library(ggplot2) library(plotly)
plot_ex <- ggplot(mtcars, aes(x = disp, y = mpg, color = factor(cyl))) + geom_point(size = 3) plot_ex
plotly::ggplotly(plot_ex)
DT
library(DT)
DT::datatable(mtcars)